/* CeraBielefeld Implementieren */
@font-face {
    font-family: 'CeraBielefeld';
    src: url('fonts/CeraBielefeld-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;}

@font-face {
    font-family: 'CeraBielefeld';
    src: url('fonts/CeraBielefeld-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'CeraBielefeld';
    src: url('fonts/CeraBielefeld-BlackItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

a{
  font-weight: bold;
}

/*-------------------------------------------------------------------------------------------------------*/
.bildbiblio{
  float: left;
  box-shadow: 5px 5px 5px silver;
	border-radius: 10px;
  padding: 10px;
  margin-right: 30px;
  margin-bottom: 10px;
}

/*-------------------------------------------------------------------------------------------------------*/


.biblio{
    font-family: 'CeraBielefeld', sans-serif;
    font-style: italic;
}

.biblio-table {
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.biblio-table th,
.biblio-table td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.biblio-table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.biblio-table caption {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
  caption-side: top;
}

.biblio-group {
  background-color: #eaeaea;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .biblio-table th,
  .biblio-table td {
    font-size: 13px;
    padding: 6px;
  }
}
/* Slider Design Home -------------------------------------------------------------------------------*/
.content-slider-home {
  width: 98%;
  margin: 0 auto;
}

.slider-home {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  background: #fff;
}

.slides-home {
  display: flex;
  width: 100%;
  transition: transform 1s ease-in-out;
}

.slides-home > a {
  width: 100%; 
  height: 100%;
  flex: 0 0 100%; 
  user-select: none;
  cursor: pointer;
  display: block;
}

.slides-home img {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 300;
  display: block;
  object-fit: cover; /* Zeigt das ganze Bild ohne Abschneiden */
}

.prev-home, .next-home {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 15px 10px;
  cursor: pointer;
  font-size: 24px;
  transition: 0.3s;
  z-index: 10;
  border-radius: 0 5px 5px 0;
  user-select: none;
}

.next-home {
  right: 0;
  border-radius: 5px 0 0 5px;
}

.prev-home:hover, .next-home:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Media Queries für Mobilgeräte optimieren */
@media (max-width: 768px) {
.content-slider-home {
    display: none !important;
  }
}
/* Slider Design -------------------------------------------------------------------------------*/
.content-slieder {
  width: 98%;
  margin: 0 auto;
}

.slider {
  position: relative;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  background: #fff;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 1s ease-in-out;
}

.slides > a {
  /* Wichtig: Jeder Slide muss exakt so breit sein wie der Slider-Container */
  width: 100%; 
  flex: 0 0 100%; 
  user-select: none;
  cursor: pointer;
  display: block;
}

.slides img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover; /* Zeigt das ganze Bild ohne Abschneiden */
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
  align-items: center;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #bbb;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  padding: 0;
  line-height: 1;
  display: inline-block;
  flex: 0 0 auto;
}

.dot.active {
  background: #333;
}

/* Media Queries für Mobilgeräte optimieren */
@media (max-width: 768px) {
  .dots { bottom: 5px; }
  .dot { width: 10px; height: 10px; }
}

/* Dashboard Menü */
.dashboard-container{
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-button-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  justify-items: center;
  width: 95%;
}

.dashboard-circle-btn{
  width: 80%;
  height: 80%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  background: #fff;
  color: #000;
  text-decoration: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: all 0.2s ease;
  padding: 10px;
  box-sizing: border-box;
}

.dashboard-circle-btn-text {
  font-size: clamp(14px, 3vw, 16px);
  font-family: CeraBielefeld;
  font-weight: bold;
  line-height: 1.2;

  margin-top: 0px; 
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

/* Neue Klasse für die Bild-Icons */
.dashboard-circle-btn-image {
  width: clamp(30px, 6vw, 50px);
  height: 60%;
  max-width: 100%; 
  display: block; 
  object-fit: contain; 
  margin-bottom: 5px;
}


.dashboard-circle-btn:hover{
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}


@media (max-width: 1000px){
  .dashboard-button-grid{ 
    grid-template-columns: repeat(3, 1fr); 
    width: 100%;}

  .dashboard-circle-btn{
    width: 90%;
    height: 90%;
  }

  .dashboard-circle-btn-image {
    width: clamp(50px, 6vw, 50px);}
}
@media (max-width: 600px){
  .dashboard-button-grid{ grid-template-columns: repeat(3, 1fr); 
  width: 100%;}

  .dashboard-circle-btn{
    width: 90%;
    height: 90%;
  }

  .dashboard-circle-btn-image {
    width: clamp(50px, 6vw, 50px);}
}

/* Accordion Disayn */
.accordion {
  margin: 40px auto;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  
}

.accordion-item {
  border-bottom: 1px solid #ececec;
  align-items: center;
}

.accordion-header {
  background-color: #ffffff;
  padding: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  font-weight: bold;
  font-size: 18px;
  align-items: center;
}

.accordion-header::after {
  content: "\276F";
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  position: absolute;
  right: 15px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #ececec77;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;

}

.accordion-content img{
  float: left;
  box-shadow: 5px 5px 5px silver;
	border-radius: 10px;
  padding: 10px;
  margin-right: 20px;
}

.accordion-content p{
padding: 10px;
}

.accordion-item.active .accordion-content {
  max-height: 3000px;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Seitlicher weicher Schatten */
}

.accordion-item.active .accordion-header::after{
  transform: translateY(-50%) rotate(90deg);
}

/* Stadtteilbibliotheken--------------------------------------------------------------------------------- */

.opening-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.opening-hours-table img{
  max-width: 100%;       
  height: auto;          
  width: 120px;        
  display: block;        
  margin: 5px auto;      
  border: 1px solid #ddd; 
  border-radius: 2px;    
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); 
}


.opening-hours-table th,
.opening-hours-table td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.opening-hours-table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.opening-hours-table caption {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
  caption-side: top;
}

.opening-hours-group {
  background-color: #eaeaea;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .opening-hours-table th,
  .opening-hours-table td {
    font-size: 13px;
    padding: 6px;
  }
}
/*******************************************************************************************************************************************/
.contact-map-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.contact-map-table td {
  vertical-align: top;
}

.contact-info {
  line-height: 1.6;
}

.contact-info strong {
  font-size: 16px;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
  word-break: break-word;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map-iframe {
  width: 100%;
  max-width: 400px;
  height: 250px;
  border: 0;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .contact-map-table {
    display: block;
  }

  .contact-map-table td {
    display: block;
    width: 100%;
  }

  .map-iframe {
    max-width: 100%;
    height: 250px;
  }
}

/* APPs */

.apps-section {
  padding: 2rem;
  background: #ffffff;
}

.apps-section h2 {
  text-align: center;
  color: #003366; 
  margin-bottom: 2rem;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.app-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(2, 0, 0, 0.37);
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(2, 0, 0, 0.37);
}

.app-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.app-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #003366;
}

.app-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.buttons a {
  display: inline-block;
  margin: 0.2rem;
  padding: 0.4rem 0.8rem;
  background: #ffffff;
  color: rgb(0, 0, 0);
  border: 2px solid #003366; /* Stadt Bielefeld Blau */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s ease;
}

.buttons a:hover {
  background: #e9edf0;
}

/* eData und Lexica------------------------------------------------------------------*/


.eDatas-section {
  padding: 2rem;
  background: #ffffff;
}

.eDatas-section h2 {
  text-align: center;
  color: #003366; 
  margin-bottom: 2rem;
}

.eDatas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.eData-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(2, 0, 0, 0.37);
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eData-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(2, 0, 0, 0.37);
}

.eData-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 5px;
}

.eData-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #003366;
}

.eData-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.4;
}


/* GroseKarte mit Text und Bild*/

.bibcard-section {
  padding: 2rem;
  background: #ffffff;
}

.bibcard-section h2 {
  text-align: center;
  color: #003366; 
  margin-bottom: 2rem;
}

.bibcard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.bibcard-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(2, 0, 0, 0.37);
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 25px;
  display: flex; 
  align-items: center; 
  text-align: left;
  gap: 1.5rem;
}

.bibcard-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(2, 0, 0, 0.37);
}

.bibcard-card img {
  width: 200px;
  height: auto; 
  flex-shrink: 0; 
}

.bibcard-text-content {
  flex-grow: 1; 
}

.bibcard-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #003366;
  text-align: left;
}

.bibcard-card p {
  text-align: left;
  color: #696565;
  margin-bottom: 1rem;
  line-height: 1.4;

}

@media (max-width: 768px) {
  .bibcard-card {
    flex-direction: column; /* Stellt die Ausrichtung auf vertikal um */
    text-align: center; /* Zentriert den Text unter dem Bild */
  }

  .bibcard-card img {
    width: 100%; /* Das Bild nimmt die volle Breite des Containers ein */
    height: auto;
    margin-bottom: 1rem; /* Fügt Abstand unter dem Bild hinzu */
  }

  .bibcard-text-content {
    padding-top: 0; /* Entfernt den oberen Abstand */
    text-align: center; /* Stellt sicher, dass der Text zentriert ist */
  }

  .bibcard-card h3, .bibcard-card p {
    text-align: center; /* Zentriert auch Überschrift und Absatz */
  }
}

/* Veranstaltungen auf der Home Page*/

.event-container {
  gap: 20px;}



/***** Kontakt Daten*/

.contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 1rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(2, 0, 0, 0.37);
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.432);
}

.contact-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #004080;
}

.contact-card p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.contact-card a {
  color: #0066cc;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .contacts {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 Spalten */
  }
}
@media (max-width: 600px) {
  .contacts {
    grid-template-columns: 1fr; /* Handy: 1 Spalte */
  }
}



/*  Veranstaltungs Filter  */

/* Container und Allgemeine Stile */
#xevent-app {
  max-width: 90%;
  /* Font-Family wurde beibehalten, da es global sein könnte.
     Wenn Sie die Schriftart festlegen möchten: */
  font-family: system-ui, Segoe UI, Arial, sans-serif;
}

.xevent-heading {
  border-bottom: 2px solid black; 
  padding-bottom: 5px;

}

/* Steuerelemente (Dropdown, Checkbox, Button) */
.xevent-controls {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.xevent-select-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

#catSelect {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}

.xevent-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.xevent-checkbox-label {
  user-select: none;
}

#filterBtn {
  margin-left: auto;
  padding: 0.6rem 1rem;
  border: 1px solid #222;
  border-radius: 0.6rem;
  background: #111;
  color: #fff;
  cursor: pointer;
}

/* Statusmeldung */
.xevent-status {
  font-size: 0.95rem;
  color: #444;
  margin: 0.25rem 0 0.75rem;
}

/* Veranstaltungsliste */
.xevent-list {
  display: grid;
  gap: 0.75rem;
}

/* Event-Karte (article) */
.xevent-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: #fff;
}

.xevent-card-title {
  margin: 0;
  font-size: 1.05rem;
}

/* Link im Titel */
.xevent-card-link {
  color: #152633;
  text-decoration: none;
  font-weight: 600;
}

.xevent-card-link:hover {
  text-decoration: underline;
}

/* Meta-Informationen (Datum/Ort) */
.xevent-card-meta {
  font-size: 0.92rem;
  color: #333;
}

/* Kategorien-Container */
.xevent-card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

/* Kategorie-Badge (span) */
.xevent-card-badge {
  font-size: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 999px; /* Pseudo-Kreis für Pille */
  padding: 0.15rem 0.5rem;
  background: #f9f9f9;
}

/* Paginierung */
.xevent-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.xevent-pagination-btn {
  padding: 0.4rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  background: #f8f8f8;
  cursor: pointer;
}

.xevent-pagination-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.xevent-pagination-info {
  padding: 0.4rem 0.8rem;
  color: #333;
}

/*************************Öffnungszeiten*****************************/
table.zeiten-plan {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

table.zeiten-plan th,
table.zeiten-plan td {
  border: 1px solid #ddd;
  padding: 8px 10px;
  text-align: center;
}

table.zeiten-plan thead th {
  background: #f3f3f3;
  font-weight: bold;
}

table.zeiten-plan thead th:first-child {
  text-align: left;
}

table.zeiten-plan tbody td:first-child {
  text-align: left;
  font-weight: bold;
  background: #fafafa;
}

.info-row td {
  font-style: italic;
  background: #f9f9f9;
  font-weight: normal;
}


@media screen and (max-width: 768px) {
  .zeiten-plan thead {
    display: none; 
  }

  .zeiten-plan td {
    display: block; 
    text-align: right !important;
    padding-left: 50%;
    position: relative;
    border-bottom: 1px solid #eee;
  }

  .zeiten-plan td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    font-weight: bold;
    text-align: left;
  }

 
  .zeiten-plan td.row-title {
    background-color: #e2e2e2 !important;
    text-align: center !important;
    padding-left: 10px;
  }
  
  .zeiten-plan td.row-title::before {
    content: ""; 
  }

  
  .info-row td {
    text-align: left !important;
    padding-left: 10px;
  }
  .info-row td::before {
    content: "";
  }
}

/*---------------------------------- Social Media-----------------------------------------*/

.mobile-only-content { 
  display: none; 
}

/* Nur auf dem Handy anzeigen */
@media (max-width: 767px) {
  .mobile-only-content { 
      display: block; 
      padding: 10px 0; 
  }

  .social-icon-container {
      display: flex;
      justify-content: center; 
      align-items: center;
      gap: 20px; 
  }

  .social-icon-container img {
      width: 40px;
      height: 28px;
      display: block; 
  }
}

/*-----------------------------------------Ankündigung-----------------------------------------*/

.announcement-banner {
  max-width: 1200px;
  margin: 10px auto;
  padding: 10px;
  background-color: #ffffff;
  border-style: dashed;
  border-color: red;
  border-width: 2px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.announcement-icon {
  height: 50px;
  margin-right: 20px;
  font-size: 24px;
  color: #0056b3;
}

.announcement-content {
  flex-grow: 1;
}

.announcement-content h3 {
  margin: 0 0 5px 0;
  color: #000;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.announcement-content p {
  margin: 0;
  color: #333;
  line-height: 1.5;
}

.announcement-action {
  margin-left: 20px;
}

.announcement-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f8f6f6;
  color: #000000;
  text-decoration: none;
  border-radius: 2px;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

/* Ersetzt das onmouseover-Attribut */
.announcement-button:hover {
  opacity: 0.8;
}

/*--------------Veranstaltungen Heute----------------------*/

@media (max-width: 1000px){
  #heute-list{
    padding-inline-start: 0rem;
  }
  
}
@media (max-width: 600px){
  #heute-list{
    padding-inline-start: 0rem;
  }
  
}

/* ----------------------------------Aktuelles--------------------------------------*/
/* Container & Header */
.news-container-title {
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

/* Listen-Styling */
.news-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.news-item {
  padding: 0; 
  border: 1px solid #eee; 
  border-radius: 8px; 
  transition: 0.3s; 
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); 
  background-color: #fff;
  margin-bottom: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.news-item:hover {
  transform: translateY(-1px);
  background-color: #f9f9f9;
}

.news-link, .news-link:hover, .news-link:focus, .news-link:active {
  display: flex !important;
  text-decoration: none !important;
  color: #333;
  min-height: 80px;
  outline: none;
  align-items: center; /* Zentriert Bild und Text vertikal */
}

/* Bild-Bereich */
.news-image-wrapper {
  width: 120px; 
  flex-shrink: 0;
  background-color: #ffffff;
  margin: 10px;
}

.news-image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  display: block;
}

/* Text-Inhalt */
.news-content {
  padding: 10px 15px; /* Reduziertes Padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.news-title {
  margin: 0 0 5px 0;
  color: #000;
  font-size: 1.1em;
  font-family: sans-serif;
  text-decoration: none !important; /* Sicherheitshalber auch hier */
}

.news-description {
  margin: 0;
  font-size: 0.9em;
  color: #666;
  line-height: 1.3;
  text-decoration: none !important;
}

.news-more-link {
  margin-top: 5px;
  font-size: 0.8em;
  color: rgb(0, 0, 0);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Paginierung */
.pagination-controls {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: sans-serif;
}

.btn-pagination {
  padding: 8px 16px;
  border: 1px solid #007bff;
  text-decoration: none;
  color: #007bff;
  border-radius: 5px;
  font-weight: bold;
}

.btn-pagination.disabled {
  border: 1px solid #ddd;
  color: #ccc;
  pointer-events: none;
}

.page-info {
  font-size: 0.9em;
  color: #666;
  font-weight: bold;
}

.news-empty-state {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: center;
  color: #666;
  font-family: sans-serif;
}

/*-----------------------------------*/
#be-widget-toggler {
  bottom: 80px !important;
  width: 90px !important;
  flex-direction: column !important;
  gap: 4px !important;
  visibility: hidden;
}

#be-widget-toggler svg {
  max-width: 50px !important;
}